home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
clr.cc
< prev
next >
Wrap
Text File
|
1987-09-26
|
343b
|
17 lines
#include <dos.h>
void clr(wattr)
/* CLear the screen using the attribute passed */
{
union REGS inregs;
inregs.h.bh = wattr;
inregs.h.cl = 0;
inregs.h.ch = 0;
inregs.h.dl = 79;
inregs.h.dh = 24;
inregs.h.al = 0;
inregs.h.ah = 6; /* do the scroll */
int86(0x10,&inregs,&inregs);
locate(0,0);
}